-
Notifications
You must be signed in to change notification settings - Fork 6
e2e add field scenarios #19
base: develop
Are you sure you want to change the base?
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
@@ -26,8 +26,9 @@ | |||
|
|||
<properties> | |||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |||
<cdap.version>6.1.2</cdap.version> | |||
<cdap.version>6.8.0-SNAPSHOT</cdap.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this change required?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is changed to latest version becuase for older versions the build was not getting successful.
pom.xml
Outdated
</dependency> | ||
<dependency> | ||
<groupId>io.cdap.cdap</groupId> | ||
<artifactId>cdap-data-pipeline</artifactId> | ||
<version>${cdap.version}</version> | ||
<version>6.4.0</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are we hardcoding the version instead of taking from the property?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hardcoding removed.
<powermock.version>2.0.2</powermock.version> | ||
<cdap.data.pipeline.version>6.4.0</cdap.data.pipeline.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why was this added?
@@ -26,8 +26,10 @@ | |||
|
|||
<properties> | |||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |||
<cdap.version>6.1.2</cdap.version> | |||
<cdap.version>6.8.0-SNAPSHOT</cdap.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you shouldn't need to bump cdap.version as we aren't adding a dependency on CDAP APIs that have been added in 6.8.0-SNAPSHOT
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>30.1.1-jre</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are you adding guava dependency here? If it's needed for e2e-tests, can you add the dependency under e2e-tests profile?
And Verify the pipeline status is "Succeeded" | ||
Then Close the pipeline logs | ||
Then Validate OUT record count is equal to IN record count | ||
Then Verify column: "afFieldName" is added in target BigQuery table: "bqTargetTable" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we also verify that the data stored in the new column is correct?
@rmstar @itsankit-google Please review.
cc @sawantpritam